Use pthread_attr_init() as a test function, since most of the rest of
authorOwen Taylor <otaylor@gtk.org>
Wed, 20 May 1998 03:41:28 +0000 (03:41 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Wed, 20 May 1998 03:41:28 +0000 (03:41 +0000)
Tue May 19 23:41:04 1998  Owen Taylor  <otaylor@gtk.org>

* configure.in: Use pthread_attr_init() as a test function,
since most of the rest of -lpthread is macros on DU4.

Mon May 18 22:14:39 1998  Owen Taylor  <otaylor@gtk.org>
(Yasuhiro SHIRASAKI <joke@awa.tohoku.ac.jp> : gtk-joke-980517-0.patch)

* gutils.c: Restored a missing prototype for g_vsprintf.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
configure.in
glib/ChangeLog
glib/gutils.c

index 50dfcb49f3899d9373863e08d8e4819b551d999a..ed530803fe0259169058b2356077b43250ccbc7c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue May 19 23:41:04 1998  Owen Taylor  <otaylor@gtk.org>
+
+       * configure.in: Use pthread_attr_init() as a test function,
+       since most of the rest of -lpthread is macros on DU4.
+
 Tue, 19 May 1998 09:03:03 +0200  Paolo Molaro <lupus@debian.org>
 
        * gtk/gtkcombo.c: implemented completion in the entry.
index 50dfcb49f3899d9373863e08d8e4819b551d999a..ed530803fe0259169058b2356077b43250ccbc7c 100644 (file)
@@ -1,3 +1,8 @@
+Tue May 19 23:41:04 1998  Owen Taylor  <otaylor@gtk.org>
+
+       * configure.in: Use pthread_attr_init() as a test function,
+       since most of the rest of -lpthread is macros on DU4.
+
 Tue, 19 May 1998 09:03:03 +0200  Paolo Molaro <lupus@debian.org>
 
        * gtk/gtkcombo.c: implemented completion in the entry.
index 50dfcb49f3899d9373863e08d8e4819b551d999a..ed530803fe0259169058b2356077b43250ccbc7c 100644 (file)
@@ -1,3 +1,8 @@
+Tue May 19 23:41:04 1998  Owen Taylor  <otaylor@gtk.org>
+
+       * configure.in: Use pthread_attr_init() as a test function,
+       since most of the rest of -lpthread is macros on DU4.
+
 Tue, 19 May 1998 09:03:03 +0200  Paolo Molaro <lupus@debian.org>
 
        * gtk/gtkcombo.c: implemented completion in the entry.
index 50dfcb49f3899d9373863e08d8e4819b551d999a..ed530803fe0259169058b2356077b43250ccbc7c 100644 (file)
@@ -1,3 +1,8 @@
+Tue May 19 23:41:04 1998  Owen Taylor  <otaylor@gtk.org>
+
+       * configure.in: Use pthread_attr_init() as a test function,
+       since most of the rest of -lpthread is macros on DU4.
+
 Tue, 19 May 1998 09:03:03 +0200  Paolo Molaro <lupus@debian.org>
 
        * gtk/gtkcombo.c: implemented completion in the entry.
index 50dfcb49f3899d9373863e08d8e4819b551d999a..ed530803fe0259169058b2356077b43250ccbc7c 100644 (file)
@@ -1,3 +1,8 @@
+Tue May 19 23:41:04 1998  Owen Taylor  <otaylor@gtk.org>
+
+       * configure.in: Use pthread_attr_init() as a test function,
+       since most of the rest of -lpthread is macros on DU4.
+
 Tue, 19 May 1998 09:03:03 +0200  Paolo Molaro <lupus@debian.org>
 
        * gtk/gtkcombo.c: implemented completion in the entry.
index 50dfcb49f3899d9373863e08d8e4819b551d999a..ed530803fe0259169058b2356077b43250ccbc7c 100644 (file)
@@ -1,3 +1,8 @@
+Tue May 19 23:41:04 1998  Owen Taylor  <otaylor@gtk.org>
+
+       * configure.in: Use pthread_attr_init() as a test function,
+       since most of the rest of -lpthread is macros on DU4.
+
 Tue, 19 May 1998 09:03:03 +0200  Paolo Molaro <lupus@debian.org>
 
        * gtk/gtkcombo.c: implemented completion in the entry.
index 50dfcb49f3899d9373863e08d8e4819b551d999a..ed530803fe0259169058b2356077b43250ccbc7c 100644 (file)
@@ -1,3 +1,8 @@
+Tue May 19 23:41:04 1998  Owen Taylor  <otaylor@gtk.org>
+
+       * configure.in: Use pthread_attr_init() as a test function,
+       since most of the rest of -lpthread is macros on DU4.
+
 Tue, 19 May 1998 09:03:03 +0200  Paolo Molaro <lupus@debian.org>
 
        * gtk/gtkcombo.c: implemented completion in the entry.
index 74f23e4f61020a1334154ad0994be8a7a5a3ce2b..be02f4e1f076d4457d610172117f70aaf4b4054a 100644 (file)
@@ -187,7 +187,7 @@ fi
 # Threads
 
 if test "x$with_threads" = "xposix" || test "x$with_threads" = "xyes"; then
-  AC_CHECK_LIB(pthread, pthread_create
+  AC_CHECK_LIB(pthread, pthread_attr_init
     AC_DEFINE(USE_PTHREADS)
     x_libs="$x_libs -lpthread"
     CFLAGS="$CFLAGS -D_REENTRANT") 
index 8ea2a218e9421e2abe9749573a4466e8e2ba5f4e..247319f3e97034096c133497e63e5c0fcc0d81d4 100644 (file)
@@ -1,3 +1,8 @@
+Mon May 18 22:14:39 1998  Owen Taylor  <otaylor@gtk.org>
+(Yasuhiro SHIRASAKI <joke@awa.tohoku.ac.jp> : gtk-joke-980517-0.patch)
+       
+       * gutils.c: Restored a missing prototype for g_vsprintf.
+
 Wed May 20 05:02:26 1998  Tim Janik  <timj@gtk.org>
 
         * glib.h: conditionally define NULL, FALSE and TRUE.
index ef51134828f71df87f09c0c872ff03ba12856ed1..c97f408bf4a6aa27172158747bc4905b19bbae97 100644 (file)
@@ -24,6 +24,7 @@
 #include <ctype.h>             /* For tolower() */
 #include "glib.h"
 
+extern char* g_vsprintf (const gchar *fmt, va_list *args, va_list *args2);
 
 gchar*
 g_strdup (const gchar *str)